home *** CD-ROM | disk | FTP | other *** search
/ Champak 62 / Volume 62 - JOGO DISK .iso / Games / penguin_dinner.swf / scripts / __Packages / classes / math / Tile.as < prev   
Text File  |  2008-03-17  |  362b  |  21 lines

  1. class classes.math.Tile
  2. {
  3.    var x = 0;
  4.    var y = 0;
  5.    var G = 0;
  6.    var H = 0;
  7.    var F = 0;
  8.    var parentTile = null;
  9.    static var SIZE = 20;
  10.    static var DX = -1;
  11.    static var DY = 7;
  12.    function Tile($x, $y, myG, myH, myF)
  13.    {
  14.       this.x = $x;
  15.       this.y = $y;
  16.       this.G = myG;
  17.       this.H = myH;
  18.       this.F = myF;
  19.    }
  20. }
  21.